fn: <=
[contents]
f++ :
n++ :
Contents
Syntax
The syntax for
<=(params)
@<=(params)
Description
Note: It is typically faster to use exprtk for relational operators, plus the syntax is nicer.
f++ example
Examples of
- for(int i=0; <=(i, 10); i+=1)
- console("i: ", i)
- int a=0, b=1, c=2
- console(<=(a, b, c))
- console(<=(c, a, b))
n++ example
Examples of
- @for(int i=0; <=(i, 10); i+=1)
- @console("i: ", i)
- @int a=0, b=1, c=2
- @console(@<=(a, b, c))
- @console(@<=(c, a, b))